type flag.uintValue
8 uses
flag (current package)
flag.go#L181: type uintValue uint
flag.go#L183: func newUintValue(val uint, p *uint) *uintValue {
flag.go#L185: return (*uintValue)(p)
flag.go#L188: func (i *uintValue) Set(s string) error {
flag.go#L193: *i = uintValue(v)
flag.go#L197: func (i *uintValue) Get() any { return uint(*i) }
flag.go#L199: func (i *uintValue) String() string { return strconv.FormatUint(uint64(*i), 10) }
flag.go#L500: case *uintValue, *uint64Value:
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)